country-dictionary/docker-compose.yml

12 lines
227 B
YAML
Raw Normal View History

2024-03-10 19:54:16 +07:00
version: "3"
services:
2024-03-10 20:07:08 +07:00
country-dict:
2024-03-10 19:54:16 +07:00
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
2024-03-10 20:07:08 +07:00
hostname: country-dictionary
container_name: country-dictionary
2024-03-10 19:54:16 +07:00
ports:
2024-03-10 20:07:08 +07:00
- "8080:8080"