Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Portainer CE image as the base image
|
2 |
+
FROM portainer/portainer-ce:latest
|
3 |
+
|
4 |
+
# Expose the Portainer web interface port
|
5 |
+
EXPOSE 9000
|
6 |
+
|
7 |
+
# Set the entrypoint to start Portainer
|
8 |
+
ENTRYPOINT ["./portainer"]
|