forked from shawly/docker-ps3netsrv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
35 lines (27 loc) · 726 Bytes
/
Dockerfile
File metadata and controls
35 lines (27 loc) · 726 Bytes
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
33
34
35
#
# ps3netsrv Dockerfile
#
# https://github.com/shawly/docker-ps3netsrv
#
# Pull base image.
FROM jlesage/baseimage:debian-8
# Define working directory.
WORKDIR /tmp
# Install ps3netsrv.
ADD ps3netsrv-builder/ps3netsrv.tar.gz /
# Add files.
COPY rootfs/ /
# Set environment variables.
ENV APP_NAME="ps3netsrv" \
TAKE_CONFIG_OWNERSHIP="0"
# Define mountable directories.
VOLUME ["/games"]
# Expose ports.
EXPOSE 38008
# Metadata.
LABEL \
org.label-schema.name="ps3netsrv" \
org.label-schema.description="Docker container for ps3netsrv" \
org.label-schema.version="unknown" \
org.label-schema.vcs-url="https://github.com/shawly/docker-ps3netsrv" \
org.label-schema.schema-version="1.0"