add docker
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:17
|
||||
restart: unless-stopped
|
||||
env_file: ".env"
|
||||
volumes:
|
||||
- ./postgresql/data:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "${POSTGRES_PORT}:5432"
|
||||
networks:
|
||||
- fbla26
|
||||
fbla26:
|
||||
image: git.marinodev.com/marinodev/fbla26_ci:latest
|
||||
restart: on-failure
|
||||
ports:
|
||||
- "${FBLA26_PORT}:8080"
|
||||
networks:
|
||||
- fbla26
|
||||
volumes:
|
||||
- ./.env:/srv/fbla26/.env
|
||||
- ./uploads:/srv/fbla26/uploads/
|
||||
|
||||
networks:
|
||||
fbla26:
|
||||
external: true
|
||||
Reference in New Issue
Block a user