mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-08-04 02:04:49 +02:00
Dockerhub integration
This commit is contained in:
parent
03f027f100
commit
ab908887e4
9 changed files with 294 additions and 66 deletions
55
docker-compose-no-postgres.yml
Normal file
55
docker-compose-no-postgres.yml
Normal file
|
@ -0,0 +1,55 @@
|
|||
services:
|
||||
routerfleet:
|
||||
container_name: routerfleet
|
||||
restart: unless-stopped
|
||||
image: eduardosilva/routerfleet:latest
|
||||
environment:
|
||||
- SERVER_ADDRESS=${SERVER_ADDRESS}
|
||||
- DEBUG_MODE=${DEBUG_MODE}
|
||||
- DATABASE_ENGINE=${DATABASE_ENGINE}
|
||||
- POSTGRES_HOST=${POSTGRES_HOST}
|
||||
- POSTGRES_PORT=${POSTGRES_PORT}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- TIMEZONE=${TIMEZONE}
|
||||
- COMPOSE_TYPE=no-postgres
|
||||
volumes:
|
||||
- sqlite_volume:/var/lib/routerfleet_sqlite/
|
||||
- media_root:/var/lib/routerfleet/
|
||||
- static_volume:/app_static_files/
|
||||
command: /bin/bash /app/init.sh
|
||||
|
||||
routerfleet-cron:
|
||||
container_name: routerfleet-cron
|
||||
restart: unless-stopped
|
||||
image: eduardosilva/routerfleet-cron:latest
|
||||
depends_on:
|
||||
- routerfleet
|
||||
|
||||
routerfleet-monitoring:
|
||||
container_name: routerfleet-monitoring
|
||||
restart: unless-stopped
|
||||
image: eduardosilva/routerfleet-monitoring:latest
|
||||
depends_on:
|
||||
- routerfleet
|
||||
|
||||
routerfleet-nginx:
|
||||
container_name: routerfleet-nginx
|
||||
restart: unless-stopped
|
||||
image: eduardosilva/routerfleet-nginx:latest
|
||||
volumes:
|
||||
- static_volume:/static
|
||||
- https_cert:/certificate
|
||||
ports:
|
||||
- "80:80"
|
||||
- "443:443"
|
||||
depends_on:
|
||||
- routerfleet
|
||||
|
||||
volumes:
|
||||
static_volume:
|
||||
https_cert:
|
||||
media_root:
|
||||
postgres_data:
|
||||
sqlite_volume:
|
Loading…
Add table
Add a link
Reference in a new issue