mirror of
https://github.com/rekryt/iplist.git
synced 2025-06-20 16:16:06 +02:00
24 lines
534 B
YAML
24 lines
534 B
YAML
services:
|
|
app:
|
|
restart: unless-stopped
|
|
build:
|
|
context: .
|
|
env_file:
|
|
- ./.env
|
|
volumes:
|
|
- ./src/:/app/src/
|
|
- ./config/:/app/config/
|
|
- ./storage/:/app/storage/
|
|
- ./public/:/app/public/
|
|
ports:
|
|
- '8080:8080'
|
|
logging:
|
|
driver: 'json-file'
|
|
options:
|
|
max-size: '50m'
|
|
# networks:
|
|
# - web
|
|
#networks:
|
|
# web:
|
|
# external: true
|
|
# name: web
|