mirror of
https://github.com/usatiuk/writer.git
synced 2025-10-28 16:07:49 +01:00
25 lines
425 B
YAML
25 lines
425 B
YAML
version: "3.8"
|
|
services:
|
|
writerapp:
|
|
image: stepanusatiuk/writer:latest
|
|
restart: always
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data:/usr/src/app/data
|
|
environment:
|
|
- JWT_SECRET=huegrhuigerhupoiervw
|
|
- PORT=8080
|
|
env_file:
|
|
- db.env
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mariadb
|
|
restart: always
|
|
volumes:
|
|
- ./dbdata:/var/lib/mysql
|
|
env_file:
|
|
- db.env
|
|
|