mirror of
https://github.com/amigan/rustypaste-pretty.git
synced 2024-11-21 11:59:48 -05:00
16 lines
331 B
YAML
16 lines
331 B
YAML
version: "3.6"
|
|
services:
|
|
server:
|
|
image: orhunp/rustypaste:${IMAGE_TAG:-latest}
|
|
build: .
|
|
container_name: rustypaste
|
|
restart: always
|
|
environment:
|
|
- RUST_LOG=debug
|
|
env_file:
|
|
- ./.env
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- ./upload/:/app/upload
|
|
- ./config.toml:/app/config.toml
|