Initialized docker-compose.yml

Minimal Docker-Compose file with only port mapping
main
Andre 2024-03-25 09:53:21 +01:00
parent 69b76b9b10
commit ba260ba118
1 changed files with 8 additions and 0 deletions

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
version: '3'
services:
my-container:
image: <image_name>:<tag_name>
ports:
- "80:80"
# Add other configuration options as needed