mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-29 07:47:47 +01:00
24 lines
407 B
YAML
24 lines
407 B
YAML
version: "3.8"
|
|
services:
|
|
photosapp:
|
|
image: stepanusatiuk/photos:latest
|
|
restart: always
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./data:/usr/src/app/data
|
|
environment:
|
|
- JWT_SECRET=huegrhuigerhupoiervw
|
|
env_file:
|
|
- db.env
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mariadb
|
|
restart: always
|
|
volumes:
|
|
- ./dbdata:/var/lib/mysql
|
|
env_file:
|
|
- db.env
|
|
|