mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
Update Readme.
This commit is contained in:
parent
6f3b6a479d
commit
82acd2725e
10
Dockerfile
10
Dockerfile
@ -1,8 +1,16 @@
|
|||||||
|
# Build Stage
|
||||||
FROM golang:alpine AS build-env
|
FROM golang:alpine AS build-env
|
||||||
ADD . /src
|
ADD . /src
|
||||||
RUN cd /src && go build -o wakapi
|
RUN cd /src && go build -o wakapi
|
||||||
|
|
||||||
# final stage
|
# Final Stage
|
||||||
|
# When running the application using `docker run`, you can pass environment variables
|
||||||
|
# to override config values from .env using `-e` syntax.
|
||||||
|
# Available options are:
|
||||||
|
# – WAKAPI_DB_USER
|
||||||
|
# – WAKAPI_DB_PASSWORD
|
||||||
|
# – WAKAPI_DB_HOST
|
||||||
|
# – WAKAPI_DB_NAME
|
||||||
FROM alpine
|
FROM alpine
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=build-env /src/wakapi /app/
|
COPY --from=build-env /src/wakapi /app/
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
[![Buy me a coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://buymeacoff.ee/n1try)
|
[![Buy me a coffee](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://buymeacoff.ee/n1try)
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
* Go >= 1.10 (with `$GOPATH` properly set)
|
* Go >= 1.13 (with `$GOPATH` properly set)
|
||||||
* A MySQL database
|
* A MySQL database
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
@ -23,12 +23,12 @@
|
|||||||
* `api_key = the_api_key_printed_to_the_console_after_starting_the_server`
|
* `api_key = the_api_key_printed_to_the_console_after_starting_the_server`
|
||||||
* Open [http://localhost:3000](http://localhost:3000) in your browser
|
* Open [http://localhost:3000](http://localhost:3000) in your browser
|
||||||
|
|
||||||
## Docker
|
### Run with Docker
|
||||||
* Edit the docker-compose file and change passwords for the DB
|
* Edit `docker-compose.yml` file and change passwords for the DB
|
||||||
* Build the container `docker-compose build`
|
* Build the container `docker-compose build`
|
||||||
* Start the application `docker-compose up -d`
|
* Start the application `docker-compose up -d`
|
||||||
* To get the api key look in the logs `docker-compose logs | grep "API key"`
|
* To get the api key look in the logs `docker-compose logs | grep "API key"`
|
||||||
* The application should now be running on `hostname:3000`
|
* The application should now be running on `localhost:3000`
|
||||||
|
|
||||||
|
|
||||||
### User Accounts
|
### User Accounts
|
||||||
|
Loading…
Reference in New Issue
Block a user