Docker Update

This commit is contained in:
Daniel Legt 2022-05-18 01:40:22 +03:00
parent da324e4ca1
commit 9bb1471c22
3 changed files with 6 additions and 3 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ docker-compose.yaml
# Ignore the database file
dist/main.db
dist/freepad
dist/freepad

View File

@ -1,6 +1,6 @@
FROM alpine
LABEL version="1.1.0"
LABEL version="1.4.0"
# Copy the distribution files
COPY ./dist /app

View File

@ -6,7 +6,8 @@ services:
networks:
- backend
environment:
- MYSQL_URL
- DOMAIN_BASE=http://localhost:8888
- MYSQL_URL=mariadb
- MYSQL_ROOT_PASSWORD
- MYSQL_DATABASE
- MYSQL_USER
@ -14,8 +15,9 @@ services:
- MYSQL_PORT
depends_on:
- mariadb
ports:
- 8888:8080
# Mariadb is completely optional, you can simply just use sqlite.
mariadb:
image: mariadb:10.2
environment: