generated from gvatsal60/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
32 lines (27 loc) · 1.6 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##########################################################################################
# File: docker-compose.yml
# Author: Vatsal Gupta (gvatsal60)
# Date: 15-Sep-2024
# Description: Defines services that builds a Docker image from a custom Dockerfile located
# in the 'Dockerfiles' directory.
##########################################################################################
##########################################################################################
# License
##########################################################################################
# This Docker Compose file is licensed under the Apache 2.0 License.
##########################################################################################
##########################################################################################
# Services
##########################################################################################
services:
ubuntu-wsl:
build:
context: Dockerfiles # The build context (Dockerfile directory)
dockerfile: Dockerfile.ubuntu # The Dockerfile to use (optional if named Dockerfile)
image: ubuntu-wsl:latest # Tag for the built image
##########################################################################################
# Main Docker Compose Configuration
##########################################################################################
##########################################################################################
# End of Docker Compose Configuration
##########################################################################################